home *** CD-ROM | disk | FTP | other *** search
- function CMouseCursor()
- {
- Mouse.addListener(this);
- }
- CMouseCursor.prototype = new MovieClip();
- Object.registerClass("CMouseCursor",CMouseCursor);
- CMouseCursor.prototype.onMouseMove = function()
- {
- this._rotation = Math.atan2(this._y - 150,this._x - 150) / 3.141592653589793 * 180;
- };
-